home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Reference / Includes_and_Autodocs_3.5 / include / clib / timer_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-10-28  |  710 b   |  31 lines

  1. #ifndef  CLIB_TIMER_PROTOS_H
  2. #define  CLIB_TIMER_PROTOS_H
  3.  
  4. /*
  5. **    $VER: timer_protos.h 40.1 (17.5.1996)
  6. **
  7. **    C prototypes. For use with 32 bit integers only.
  8. **
  9. **    Copyright © 1999 Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* __cplusplus */
  16.  
  17. #ifndef  DEVICES_TIMER_H
  18. #include <devices/timer.h>
  19. #endif
  20. VOID AddTime( struct timeval *dest, CONST struct timeval *src );
  21. VOID SubTime( struct timeval *dest, CONST struct timeval *src );
  22. LONG CmpTime( CONST struct timeval *dest, CONST struct timeval *src );
  23. ULONG ReadEClock( struct EClockVal *dest );
  24. VOID GetSysTime( struct timeval *dest );
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif /* __cplusplus */
  29.  
  30. #endif   /* CLIB_TIMER_PROTOS_H */
  31.